home *** CD-ROM | disk | FTP | other *** search
- Path: csun.edu!kc44097
- From: kc44097@csun.edu (chen)
- Newsgroups: comp.lang.c++
- Subject: Help!
- Date: 6 Apr 1996 01:13:03 GMT
- Organization: California State University, Northridge
- Message-ID: <4k4gev$lgo@dewey.csun.edu>
- NNTP-Posting-Host: louie.csun.edu
-
-
- Can anyone help me out this problems below,please e-mail me,
- my e-mail address is kc44097@huey.csun.edu
- Thanks
- -------------------------------------------------------------------------
-
- 3. Consider the following C program:
-
- void fun (void)
- {
- int a,b,c; /*define 1 */
- ...
- while(...)
- {
- int b,c,d; /* define 2 */
- ... <---------------------- 1
- while (...)
- {
- int c,d,e; /* define 3 */
- ... <----------------------- 2
- }
- ... <--------------- 3
- }
- ... <------------------- 4
- }
-
- For each of the four marked points in this function,list each visia-
- ble variable,along with the nbumber of the defination statement that
- defines it.
-